From: Richard M. Stallman Date: Tue, 3 Feb 1998 06:14:39 +0000 (+0000) Subject: (Fcall_process): Allow creating a new buffer for the output. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~78253 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=50fe359bd17a2efecde87d13b1681b5824f215c5;p=emacs.git (Fcall_process): Allow creating a new buffer for the output. --- diff --git a/src/callproc.c b/src/callproc.c index 18f11c1d8b7..4e1821a2aef 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -367,7 +367,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") { Lisp_Object spec_buffer; spec_buffer = buffer; - buffer = Fget_buffer (buffer); + buffer = Fget_buffer_create (buffer); /* Mention the buffer name for a better error message. */ if (NILP (buffer)) CHECK_BUFFER (spec_buffer, 2);